home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / qbbs / cbs_121r.zip / REGISTER.Q-A < prev   
Text File  |  1990-03-23  |  2KB  |  74 lines

  1. CLEARSCREEN
  2. POSTINFO
  3. DISPLAY "                   NEW USER QUESTIONAIRE"
  4. DISPLAY "||Please answer all questions to insure complete verification.||"
  5. DISPLAY "What is your full name | "
  6. DISPLAY "? "
  7. ASK 60 1
  8. OUTPUTANSWER "Name: " 1
  9. DISPLAY "||What is your day phone #|"
  10. DISPLAY "? "
  11. ASK 14 2
  12. OUTPUTANSWER "PHONE: " 2
  13. DISPLAY "||What is your evening phone #| "
  14. DISPLAY "? "
  15. ASK 14 3
  16. OUTPUTANSWER "PHONE: " 3
  17. DISPLAY "||What is your STREET address|"
  18. DISPLAY "? "
  19. ASK 60 4
  20. OUTPUTANSWER "Street: " 4
  21. DISPLAY "||What is your CITY and STATE|"
  22. DISPLAY "?  "
  23. ASK 60 5
  24. OUTPUTANSWER "CITY/STATE: "5
  25. DISPLAY "||What is your ZIP CODE|"
  26. DISPLAY "? "
  27. ASK 9 6
  28. OUTPUTANSWER "Zip Code: " 6
  29. DISPLAY "||Your date of birth (mm/dd/yr) ?"
  30. DISPLAY "|? "
  31. ASK 10 7
  32. OUTPUTANSWER "date of birth" 7
  33. DISPLAY "||What type of computer do you use ?"
  34. DISPLAY "|     A. IBM or Clone 386"
  35. DISPLAY "|     B. IBM or Clone 286"
  36. DISPLAY "|     C. IBM or Clone XT"
  37. DISPLAY "|     D. None MS-DOS based Computer"
  38. DISPLAY "||   ? "
  39. GETCHOICE ABCD 8
  40. OUTPUTANSWER "Computer: " 8
  41. DISPLAY "||What speed does your modem operate at? "
  42. DISPLAY "|     A. 300 "
  43. DISPLAY "|     B. 1200"
  44. DISPLAY "|     C. 2400"
  45. DISPLAY "|     D. 9600"
  46. DISPLAY "|     E. OTHER"
  47. DISPLAY "||   ? "
  48. GETCHOICE ABCDE 9
  49. OUTPUTANSWER "Modem speed: " 9
  50. DISPLAY "||Do you do any programming? (Y/N) |"
  51. DISPLAY "|? "
  52. ASK 1 10
  53. OUTPUTANSWER "Programming ? " 10
  54. IF 10 = "Y"
  55. DISPLAY "||What languages do you work with ? |"
  56. ASK 70 11
  57. OUTPUTANSWER "Languages: " 11
  58. ENDIF
  59. DISPLAY "||Are you presently a Sysop? (Y/N) |"
  60. DISPLAY "|? "
  61. ASK 1 12
  62. OUTPUTANSWER "Sysop ? " 12
  63. IF 12 = "Y"
  64. DISPLAY "||Please give your System Name, phone # & Net/Node # (if it apply's)|"
  65. ASK 70 13
  66. OUTPUTANSWER "System : " 13
  67. ENDIF
  68. DISPLAY "||Thank you for answering these questions.|"
  69. DISPLAY "|If you have any comments or questions, please leave a message to"
  70. DISPLAY "|the Sysop when you are logging off the system.  Thank You. |"
  71. DISPLAY "|Press <ENTER> to continue"
  72. ASK 1 14
  73. QUIT
  74.